{
  "bundles": [
    {
      "@type": "NXBundle",
      "artifactId": "nuxeo-runtime-datasource",
      "artifactVersion": "2021.63.8",
      "bundleGroup": {
        "@type": "NXBundleGroup",
        "bundleIds": [
          "org.nuxeo.connect.standalone",
          "org.nuxeo.launcher.commons",
          "org.nuxeo.osgi",
          "org.nuxeo.runtime",
          "org.nuxeo.runtime.aws",
          "org.nuxeo.runtime.cluster",
          "org.nuxeo.runtime.datasource",
          "org.nuxeo.runtime.jtajca",
          "org.nuxeo.runtime.kv",
          "org.nuxeo.runtime.management",
          "org.nuxeo.runtime.metrics",
          "org.nuxeo.runtime.migration",
          "org.nuxeo.runtime.mongodb",
          "org.nuxeo.runtime.nuxeo-runtime-deploy",
          "org.nuxeo.runtime.pubsub",
          "org.nuxeo.runtime.redis",
          "org.nuxeo.runtime.reload",
          "org.nuxeo.runtime.stream"
        ],
        "hierarchyPath": "/grp:org.nuxeo.runtime",
        "id": "grp:org.nuxeo.runtime",
        "name": "org.nuxeo.runtime",
        "parentIds": [],
        "readmes": [],
        "version": "2021.63"
      },
      "bundleId": "org.nuxeo.runtime.datasource",
      "components": [
        {
          "@type": "NXComponent",
          "componentClass": "org.nuxeo.runtime.datasource.DataSourceComponent",
          "declaredStartOrder": -1000,
          "documentation": "\n    Component use to register datasources.\n  \n",
          "documentationHtml": "<p>\nComponent use to register datasources.\n</p><p></p>",
          "extensionPoints": [
            {
              "@type": "NXExtensionPoint",
              "componentId": "org.nuxeo.runtime.datasource",
              "descriptors": [
                "org.nuxeo.runtime.datasource.DataSourceDescriptor",
                "org.nuxeo.runtime.datasource.DataSourceLinkDescriptor"
              ],
              "documentation": "\n\n      Example contribution:\n\n      <code>\n    <datasource driverClassName=\"org.h2.Driver\" maxTotal=\"20\"\n        maxWaitMillis=\"10000\" minTotal=\"5\" name=\"jdbc/foo\">\n        <property name=\"url\">jdbc:h2:/home/db;DB_CLOSE_ON_EXIT=false;MODE=LEGACY\n          </property>\n        <property name=\"username\">nuxeo</property>\n        <property name=\"password\">nuxeo</property>\n    </datasource>\n</code>\n\n\n      Or, for a XA datasource:\n\n      <code>\n    <datasource maxTotal=\"20\" maxWaitMillis=\"10000\" minTotal=\"5\"\n        name=\"jdbc/foo\" xaDataSource=\"org.h2.jdbcx.JdbcDataSource\">\n        <property name=\"databaseName\">/home/db</property>\n        <property name=\"createDatabase\">create</property>\n        <property name=\"user\">nuxeo</property>\n        <property name=\"password\">nuxeo</property>\n    </datasource>\n</code>\n\n\n      The allowed attributes of a\n      <b>datasource</b>\n\n      element are:\n      <ul>\n    <li>\n        <b>name</b>\n          the JNDI name (for instance\n          <tt>jdbc/foo</tt>\n          )\n        </li>\n    <li>\n        <b>driverClassName</b>\n          the JDBC driver class name (only for a non-XA datasource)\n        </li>\n    <li>\n        <b>xaDataSource</b>\n          the XA datasource class name (only for a XA datasource)\n        </li>\n</ul>\n<p/>\n\n      To configure the characteristics of the pool:\n      <ul>\n    <li>\n        <b>maxTotal</b>\n          the maximum number of active connections\n        </li>\n    <li>\n        <b>minTotal</b>\n          the minimum number of idle connections\n        </li>\n    <li>\n        <b>maxWaitMillis</b>\n          the maximum number of milliseconds to wait for a connection to\n          be\n          available, or -1 (the default) to wait indefinitely\n        </li>\n    <li>\n          ... see org.apache.commons.dbcp.BasicDataSource setters for\n          more.\n        </li>\n</ul>\n<p/>\n\n      To configure the datasource, individual property sub-elements must\n      be\n      used.\n      For a non-XA datasource,\n      <b>url</b>\n\n      ,\n      <b>username</b>\n\n      and\n      <b>password</b>\n\n      are commonly used. For a XA datasource, the properties are done\n      according\n      to the JavaBean setters of the datasource, see the\n      documentation for\n      your\n      JDBC driver for more.\n    \n",
              "documentationHtml": "<p>\nExample contribution:\n</p><p>\n</p><pre><code>    &lt;datasource driverClassName&#61;&#34;org.h2.Driver&#34; maxTotal&#61;&#34;20&#34;\n        maxWaitMillis&#61;&#34;10000&#34; minTotal&#61;&#34;5&#34; name&#61;&#34;jdbc/foo&#34;&gt;\n        &lt;property name&#61;&#34;url&#34;&gt;jdbc:h2:/home/db;DB_CLOSE_ON_EXIT&#61;false;MODE&#61;LEGACY\n          &lt;/property&gt;\n        &lt;property name&#61;&#34;username&#34;&gt;nuxeo&lt;/property&gt;\n        &lt;property name&#61;&#34;password&#34;&gt;nuxeo&lt;/property&gt;\n    &lt;/datasource&gt;\n</code></pre><p>\nOr, for a XA datasource:\n</p><p>\n</p><pre><code>    &lt;datasource maxTotal&#61;&#34;20&#34; maxWaitMillis&#61;&#34;10000&#34; minTotal&#61;&#34;5&#34;\n        name&#61;&#34;jdbc/foo&#34; xaDataSource&#61;&#34;org.h2.jdbcx.JdbcDataSource&#34;&gt;\n        &lt;property name&#61;&#34;databaseName&#34;&gt;/home/db&lt;/property&gt;\n        &lt;property name&#61;&#34;createDatabase&#34;&gt;create&lt;/property&gt;\n        &lt;property name&#61;&#34;user&#34;&gt;nuxeo&lt;/property&gt;\n        &lt;property name&#61;&#34;password&#34;&gt;nuxeo&lt;/property&gt;\n    &lt;/datasource&gt;\n</code></pre><p>\nThe allowed attributes of a\n<b>datasource</b>\n</p><p>\nelement are:\n</p><ul><li>\n<b>name</b>\nthe JNDI name (for instance\njdbc/foo\n)\n</li><li>\n<b>driverClassName</b>\nthe JDBC driver class name (only for a non-XA datasource)\n</li><li>\n<b>xaDataSource</b>\nthe XA datasource class name (only for a XA datasource)\n</li></ul>\n<p>\nTo configure the characteristics of the pool:\n</p><ul><li>\n<b>maxTotal</b>\nthe maximum number of active connections\n</li><li>\n<b>minTotal</b>\nthe minimum number of idle connections\n</li><li>\n<b>maxWaitMillis</b>\nthe maximum number of milliseconds to wait for a connection to\nbe\navailable, or -1 (the default) to wait indefinitely\n</li><li>\n... see org.apache.commons.dbcp.BasicDataSource setters for\nmore.\n</li></ul>\n<p>\nTo configure the datasource, individual property sub-elements must\nbe\nused.\nFor a non-XA datasource,\n<b>url</b>\n</p><p>\n,\n<b>username</b>\n</p><p>\nand\n<b>password</b>\n</p><p>\nare commonly used. For a XA datasource, the properties are done\naccording\nto the JavaBean setters of the datasource, see the\ndocumentation for\nyour\nJDBC driver for more.\n</p><p></p>",
              "hierarchyPath": "/grp:org.nuxeo.runtime/org.nuxeo.runtime.datasource/org.nuxeo.runtime.datasource/ExtensionPoints/org.nuxeo.runtime.datasource--datasources",
              "id": "org.nuxeo.runtime.datasource--datasources",
              "label": "datasources (org.nuxeo.runtime.datasource)",
              "name": "datasources",
              "version": "2021.63.8"
            }
          ],
          "extensions": [],
          "hierarchyPath": "/grp:org.nuxeo.runtime/org.nuxeo.runtime.datasource/org.nuxeo.runtime.datasource",
          "name": "org.nuxeo.runtime.datasource",
          "requirements": [
            "org.nuxeo.runtime.jtajca.JtaActivator"
          ],
          "resolutionOrder": 790,
          "services": [
            {
              "@type": "NXService",
              "componentId": "org.nuxeo.runtime.datasource",
              "hierarchyPath": "/grp:org.nuxeo.runtime/org.nuxeo.runtime.datasource/org.nuxeo.runtime.datasource/Services/org.nuxeo.runtime.datasource.PooledDataSourceRegistry",
              "id": "org.nuxeo.runtime.datasource.PooledDataSourceRegistry",
              "overriden": false,
              "version": "2021.63.8"
            }
          ],
          "startOrder": 2,
          "version": "2021.63.8",
          "xmlFileContent": "<?xml version='1.0' encoding='UTF-8'?>\n<component name=\"org.nuxeo.runtime.datasource\">\n  <documentation>\n    Component use to register datasources.\n  </documentation>\n\n  <require>org.nuxeo.runtime.jtajca.JtaActivator</require>\n\n  <service>\n    <provide interface=\"org.nuxeo.runtime.datasource.PooledDataSourceRegistry\"/>\n  </service>\n\n  <implementation class=\"org.nuxeo.runtime.datasource.DataSourceComponent\"/>\n\n  <extension-point name=\"datasources\">\n    <documentation>\n\n      Example contribution:\n\n      <code>\n        <datasource name=\"jdbc/foo\" driverClassName=\"org.h2.Driver\" maxTotal=\"20\" minTotal=\"5\" maxWaitMillis=\"10000\">\n          <property name=\"url\">jdbc:h2:/home/db;DB_CLOSE_ON_EXIT=false;MODE=LEGACY\n          </property>\n          <property name=\"username\">nuxeo</property>\n          <property name=\"password\">********</property>\n        </datasource>\n      </code>\n\n      Or, for a XA datasource:\n\n      <code>\n        <datasource name=\"jdbc/foo\" xaDataSource=\"org.h2.jdbcx.JdbcDataSource\" maxTotal=\"20\" minTotal=\"5\" maxWaitMillis=\"10000\">\n          <property name=\"databaseName\">/home/db</property>\n          <property name=\"createDatabase\">create</property>\n          <property name=\"user\">nuxeo</property>\n          <property name=\"password\">********</property>\n        </datasource>\n      </code>\n\n      The allowed attributes of a\n      <b>datasource</b>\n      element are:\n      <ul>\n        <li>\n          <b>name</b>\n          the JNDI name (for instance\n          <tt>jdbc/foo</tt>\n          )\n        </li>\n        <li>\n          <b>driverClassName</b>\n          the JDBC driver class name (only for a non-XA datasource)\n        </li>\n        <li>\n          <b>xaDataSource</b>\n          the XA datasource class name (only for a XA datasource)\n        </li>\n      </ul>\n      <p/>\n      To configure the characteristics of the pool:\n      <ul>\n        <li>\n          <b>maxTotal</b>\n          the maximum number of active connections\n        </li>\n        <li>\n          <b>minTotal</b>\n          the minimum number of idle connections\n        </li>\n        <li>\n          <b>maxWaitMillis</b>\n          the maximum number of milliseconds to wait for a connection to\n          be\n          available, or -1 (the default) to wait indefinitely\n        </li>\n        <li>\n          ... see org.apache.commons.dbcp.BasicDataSource setters for\n          more.\n        </li>\n      </ul>\n      <p/>\n      To configure the datasource, individual property sub-elements must\n      be\n      used.\n      For a non-XA datasource,\n      <b>url</b>\n      ,\n      <b>username</b>\n      and\n      <b>password</b>\n      are commonly used. For a XA datasource, the properties are done\n      according\n      to the JavaBean setters of the datasource, see the\n      documentation for\n      your\n      JDBC driver for more.\n    </documentation>\n\n    <object class=\"org.nuxeo.runtime.datasource.DataSourceDescriptor\"/>\n    <object class=\"org.nuxeo.runtime.datasource.DataSourceLinkDescriptor\"/>\n  </extension-point>\n\n</component>",
          "xmlFileName": "/OSGI-INF/datasource-component.xml",
          "xmlPureComponent": false
        }
      ],
      "fileName": "nuxeo-runtime-datasource-2021.63.8.jar",
      "groupId": "org.nuxeo.runtime",
      "hierarchyPath": "/grp:org.nuxeo.runtime/org.nuxeo.runtime.datasource",
      "id": "org.nuxeo.runtime.datasource",
      "location": "",
      "manifest": "Manifest-Version: 1.0\r\nArchiver-Version: Plexus Archiver\r\nCreated-By: 1.6.0_20 (Sun Microsystems Inc.)\r\nBuilt-By: root\r\nBuild-Jdk: 11.0.24\r\nBundle-ManifestVersion: 2\r\nBundle-Version: 0.0.0.SNAPSHOT\r\nExport-Package: org.nuxeo.runtime.datasource\r\nBundle-ActivationPolicy: lazy\r\nBundle-ClassPath: .\r\nBundle-Category: runtime\r\nBundle-Name: Nuxeo Runtime DataSource Implementation\r\nBundle-RequiredExecutionEnvironment: JavaSE-1.6\r\nBundle-Vendor: Nuxeo\r\nNuxeo-Component: OSGI-INF/datasource-component.xml\r\nImport-Package: javax.annotation;version=\"1.0\",javax.naming,javax.nami\r\n ng.spi,javax.sql,javax.transaction;version=\"1.1\",org.apache.commons.b\r\n eanutils,org.apache.commons.dbcp;version=\"1.3\",org.apache.commons.dbc\r\n p.managed;version=\"1.3\",org.apache.commons.logging,org.nuxeo.common.x\r\n map.annotation,org.nuxeo.runtime.api,org.nuxeo.runtime.model,org.nuxe\r\n o.runtime.transaction,org.w3c.dom\r\nBundle-SymbolicName: org.nuxeo.runtime.datasource;singleton:=true\r\nEclipse-RegisterBuddy: org.nuxeo.runtime,org.nuxeo.common\r\n\r\n",
      "maxResolutionOrder": 790,
      "minResolutionOrder": 790,
      "packages": [],
      "requirements": [],
      "version": "2021.63.8"
    }
  ],
  "creationDate": 1732721792848,
  "key": "Nuxeo Platform-2021.63",
  "name": "Nuxeo Platform",
  "operations": [],
  "packages": [],
  "pluginSnapshots": {},
  "releaseDate": 1732721792848,
  "version": "2021.63"
}